home *** CD-ROM | disk | FTP | other *** search
Makefile | 1994-05-19 | 395 b | 21 lines |
- # Makefile for the FSP Port Scanner - by Cuda
- #############################################################################
- # This is where the version number string comes from:
- #
- VERSION_STR="Original Caltech version 1.0, Dec 1991"
-
- CFLAGS=-O
-
- PROGS= fspscan
-
- all: ${PROGS}
-
- fspscan: fspscan.o
- cc ${CFLAGS} -o ${PROGS} ${PROGS}.o ${LIB}
-
- fspscan.o: fspscan.c
-
- clean:
- rm -f *.o ${PROGS}
-
-